package com.loogeoustc.test;
import java.io.IOException;
import java.util.Properties;
* @author Emerson
*
* @date 2016年9月2日 下午11:45:09
*/
public class PropertiesTest {
* @param args
*/
public static void main(String[] args) {
loadProperties("config.properties");
}
private static void loadProperties(String ConfigFileName) {
Properties configFile = new Properties();
try {
configFile.load(Test.class.getClassLoader().getResourceAsStream(ConfigFileName));
String name = configFile.getProperty("name");
System.out.println(name);
} catch (IOException e) {
e.printStackTrace();
}
}
}